/* Privacy Policy Specific Styles */

/* Spotify Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 10px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    background-color: #000;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.non-funziona {
    padding-right: 60px;
}

.navbar-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-left: 50px;
    margin-right: 0;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    margin-left: 30px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #d7a900;
}

.non-funziona a:hover {
    color: #d7a900;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d7a900;
    transition: width 0.3s ease;
}

.non-funziona a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d7a900;
    transition: width 0.3s ease;
}

.nav-item a:hover::after {
    width: 100%;
}

.non-funziona a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: var(--color-white);
    margin: 4px 0;
    transition: 0.3s;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Privacy Content Styles */
.privacy-content {
    padding: 120px 0 60px;
    color: var(--color-text-light);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-container h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--color-white);
}

.privacy-container h1 strong {
    color: var(--color-primary);
}

.intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.last-update {
    color: var(--color-text-medium);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-text-dark-grey);
}

.download-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.download-link:hover {
    text-decoration: underline;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-text-dark-grey);
}

.privacy-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--color-primary);
}

.privacy-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: var(--color-white);
}

.privacy-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.privacy-section ul, .privacy-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy-section a {
    color: var(--color-primary);
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

/* Summary Box Styling */
.summary-links {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.summary-links li {
    margin-bottom: 12px;
    flex: 1 0 30%;
}

.summary-links a {
    display: block;
    color: var(--color-white);
    font-weight: 600;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.summary-links a:hover {
    background-color: var(--color-primary);
    color: var(--color-black);
    text-decoration: none;
}

/* Data Box Styling */
.data-summary {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.data-box {
    flex: 1 0 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.data-box h3 {
    margin-top: 0;
    font-size: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.data-box ul {
    margin-bottom: 25px;
}

.data-box li {
    margin-bottom: 8px;
}

/* Help Section */
.help-section {
    background-color: rgba(0, 0, 0, 1);
    border-radius: 0;
    padding: 40px 30px;
    margin-top: 60px;
    text-align: left;
}

.help-section h2 {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: none;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
}

.help-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0 auto;
    max-width: 800px;
    margin-bottom: 40px;
}

.help-list li {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 16px;
}

.help-text {
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
    text-align: left;
}

.contact-link {
    text-align: center;
    margin-top: 30px;
}

.btn-contact {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 16px;
}

.btn-contact:hover {
    background-color: var(--color-primary-dark);
    transform: scale(1.05);
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .help-section h2 {
        font-size: 28px;
    }
    
    .help-item h3 {
        font-size: 24px;
    }
    
    .privacy-container h1 {
        font-size: 32px;
    }
    
    .privacy-section h2 {
        font-size: 24px;
    }
    
    .privacy-section h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--color-black);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-item {
        margin: 15px 0;
        text-align: center;
        width: 100%;
    }

    .nav-item a {
        display: block;
        padding: 10px;
        font-size: 18px;
    }

    /* Privacy Content Adjustments */
    .privacy-content {
        padding: 100px 0 40px;
    }
    
    .privacy-container h1 {
        font-size: 28px;
    }
    
    .summary-links li {
        flex: 1 0 45%;
    }
    
    .help-item h3 {
        font-size: 22px;
    }
    
    .privacy-section h2 {
        font-size: 22px;
    }
    
    .privacy-section h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .help-section {
        padding: 30px 20px;
    }
    
    .help-section h2 {
        font-size: 24px;
    }
    
    .help-item h3 {
        font-size: 20px;
    }
    
    .dati-heading {
        font-size: 18px !important;
    }
    
    .privacy-container h1 {
        font-size: 24px;
    }
    
    .intro {
        font-size: 16px;
    }
    
    .summary-links li {
        flex: 1 0 100%;
    }
    
    .privacy-section h2 {
        font-size: 20px;
    }
    
    .privacy-section h3 {
        font-size: 18px;
    }
} 